Skip Navigation Links.

H5T..::..enumValueOf<(Of <(<'Type>)>)> Method

Returns the value corresponding to a specified member of an enumeration datatype. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5T.html#Datatype-EnumValueOf

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Shared Sub enumValueOf(Of Type) ( _
	typeId As H5DataTypeId, _
	enumName As String, _
	<OutAttribute> ByRef value As Type _
)
C#
public static void enumValueOf<Type>(
	H5DataTypeId typeId,
	string enumName,
	out Type value
)
Visual C++
public:
generic<typename Type>
static void enumValueOf(
	H5DataTypeId^ typeId, 
	String^ enumName, 
	[OutAttribute] Type% value
)
JavaScript
JavaScript does not support generic types or methods.

Parameters

typeId
Type: HDF5DotNet..::..H5DataTypeId
IN: Enumeration datatype identifier.
enumName
Type: String
IN: Symbol name of the enumeration datatype.
value
Type: Type%
OUT: Reference for output of the value of the enumeration datatype.

Type Parameters

Type

Return Value

void

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TenumValueOfException throws H5TenumValueOfException on failure.

See Also